Add a css parser test for transparent
authorMatthias Clasen <mclasen@redhat.com>
Fri, 14 Oct 2011 15:23:43 +0000 (11:23 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 25 Oct 2011 11:38:36 +0000 (07:38 -0400)
tests/css/parser/declarations-valid-26.css [new file with mode: 0644]
tests/css/parser/declarations-valid-26.ref.css [new file with mode: 0644]

diff --git a/tests/css/parser/declarations-valid-26.css b/tests/css/parser/declarations-valid-26.css
new file mode 100644 (file)
index 0000000..e49c23a
--- /dev/null
@@ -0,0 +1 @@
+* { color: red; background-color: transparent }
diff --git a/tests/css/parser/declarations-valid-26.ref.css b/tests/css/parser/declarations-valid-26.ref.css
new file mode 100644 (file)
index 0000000..4baf392
--- /dev/null
@@ -0,0 +1,4 @@
+* {
+  background-color: rgba(0,0,0,0);
+  color: rgb(255,0,0);
+}